home *** CD-ROM | disk | FTP | other *** search
Wrap
<?xml version="1.0" encoding="utf-8"?> <html><head><title>Optional (in Function Statement) [Runtime]</title><meta name="filename" content="text/sbasic/common/03104100"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css"> p.P1{ } p.P2{ } span.T1{ font-weight:bold;} </style></head><body> <help:to-be-embedded Eid="optional" xmlns:help="http://openoffice.org/2000/help"> <p class="Head1"><a name="optional"/><help:link Id="68584">Optional (in Function Statement) [Runtime]</help:link></p> <p class="Paragraph">Defines parameters that are passed to a function as optional parameters.<a name="ende"/> All following arguments after the first optional parameter must be optional too.</p> </help:to-be-embedded> <p class="Paragraph">See also: <help:link Id="68585" xmlns:help="http://openoffice.org/2000/help">IsMissing</help:link></p> <p class="Paragraph"><span class="T1">Syntax</span>:</p> <p class="Paragraph">Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)<help:key-word value="Optional" tag="kw68584_1" xmlns:help="http://openoffice.org/2000/help"/></p> <p class="Paragraph">can be called as follows:</p> <p class="P2">Examples:</p> <p class="Paragraph">Result = MyFunction("Here", 1, "There") <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>' all arguments are passed.</p> <p class="Paragraph">Result = MyFunction("Test", ,1) <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>' second argument is missing.</p> <p class="Paragraph">See also <help:link Id="68535" Eid="dialogload" xmlns:help="http://openoffice.org/2000/help">Examples</help:link>.</p> </body></html>